home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amiga68k / libsrc / string / strerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  138 b   |  12 lines

  1. #include <errno.h>
  2. #include <string.h>
  3.  
  4. extern char *_errors[];
  5.  
  6. char *strerror(int n)
  7. {
  8.     if(n>ERANGE) n=0;
  9.     return(_errors[n]);
  10. }
  11.  
  12.